/*------
  Body
------*/

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: black;  
  background-repeat: repeat;
  font-size: 0.95em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

b {
  color: #e01481;
}

.wrapper {
  padding: 0;
  width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.main {
  display: inline-block;
  margin: 0px;
  width: 100%;
  text-align: left;
  vertical-align: top;
  flex: 1;
  }

  hr {
    padding: 100px;
  }

/*--------
  Header
--------*/

.header-img {
  max-width: 100%;
  display: none;
}

/* Styling links and navigation bar */

a {
  color: #e01481;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.navlink {
    display: inline-flex;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
    justify-content: space-around;
    margin: 10px 5px;
    padding: 2px;
    font-size: 3.5em;
    text-transform: uppercase;
    font-family: 'grapesodamedium';
}
  
.navlink a:hover, .navlink a:focus {
  color: #fff;
  }


/*----------
  Content
----------*/

p {
  font-family: 'cyborgsistermedium';
  font-size: 1.75em;
}

.inner {  
  width: 800px;
  margin: auto auto;
  text-align: left;
}

.content {
  display: inline-block;
  padding: 10px;
  width: 90%;
  margin: 5px;
  align-items: center;
  text-align: left;
  color:#fff;
}

.content img {
  justify-content: center;
  max-width: 100%;
}

.header h1 {
  font-family: 'grapesodamedium';
  font-size: 3.5em;
  text-transform: uppercase;
  color: #fff;
}

h1{
  font-size: 3.25em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
}

h1, h2, h3 {
  text-align: center;
  justify-content: center;
  font-family: 'kiwisodamedium';
  text-transform: lowercase;
}

.main h1::first-letter, h2::first-letter, h3::first-letter {
  color: #e01481;
  font-size: 1.25em;
  font-weight:bold;
  }

/* Styling blockquotes */

.blockquote-container {
  padding: 10px;

  display: flex;
  flex-wrap: wrap;
}

.blockquote-container > * {
  padding: 10px;
  margin: 0px;
  flex: 1 1 200px;
}

blockquote {
  font-style:italic;
  width: 50%;
  padding: 5px 20px;
  display: flex;
}

.yes {
  background: rgba(99, 255, 47, 0.477);
    border-left: 10px solid #294d03;
}

.no {
  background: rgba(255, 21, 0, 0.492);
    border-left: 10px solid #5e0505;
}

.yes, .no {
  flex-direction: column;
  width: 50%;
}

blockquote p {
  margin-top: 10px;
}

.fa-solid {
    padding: 0px;
    margin: 0px;
    font-size: 25px
  }

.disclaimer {
  text-align: center;
  margin-top: 0;
  font-size: 1.25em;
}

hr {
  padding: 0;
  margin: 25px 0;
  border-top: 2px solid white;
}

table {
  font-style:italic;
  width: 50%;
  background: #aae6ff26;
  padding: 5px 20px;
  display: flex;
  text-align: center;
 }

.linkbanner {
  color: #fff;
  background: #e01481;
  width: 100%;
  height: 75px;
  margin-top: 0;
  text-align: center;
  text-overflow: ellipsis;
}

.linkbanner a {
  color: #fff;
  font-size: 75px;
}

.linkbanner:hover {
  background: #fff;
}

.linkbanner a:hover {
  color:#e01481;
}

/* Styling commission tables */

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 200px;
  z-index: 100;
  background: #00000080;
  backdrop-filter: blur(20px);
}

#splash h2 {
  font-family: 'grapesodamedium';
  font-size: 3em;
}

#splash h2::first-letter {
  color: #fff;
}

#splash button  {
  border: none;
  background-color: #e01481;
  color: white;
  width: 50%;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  margin: 4px 2px;
  font-family: 'cyborgsistermedium';
  
}

#splash button:hover {
  background-color: #ff4ead;
}

.left {
  float: left;
  width: 50%
}

.right {
  float: right;
  width: 50%;
}

.right p {
  padding-left: 30px;
}

.right img {
padding-left: 20px;
}

/*--------
  Footer
--------*/

/* Styles and centers social media icons */
.fa-brands {
  padding: 25px 15px;
  font-size: 30px;
  width: 50px;
  color: #fff;
}

.fa-brands:hover {
  color: #e01481;
}

.visiblemobile {
  display:none;
}
.visibledesktop {display:flex;}

/*--------
  Mobile
--------*/

 @media screen and (max-width: 800px) {
  .wrapper, .main, .inner {
    width: 90vw;
  }

  .content {
    padding: 13px;
  }

  .linkbanner a {
    font-size: 15vw;
  }

  .visiblemobile {
    background: #aae6ff26;
    display: block;
  }
  .visibledesktop {
    display: none;
  }
}
